@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  background: #c7d7db88 !important;
  text-align: center;
}
.outer {
  background: #cde0e4;
  border-radius: 10px;
  display: inline-block;
  height: 300px;
  margin: 1rem;
  position: relative;
  width: 300px;
  text-align: center;
}

.card-1 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 65%;
  height: 100%;
  border-radius: 10px;
  margin: auto;
  background: white;
}

.card-1 img {
  width: 140px;
  height: 180px;
  margin-top: 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.card-1 hr {
  margin: 20px auto;
  width: 90%;
  color: red;
  border: 1px solid red;
}

.card-1 p {
  margin-top: 15px;
  overflow-wrap: break-word;
  text-align: center;
  color: black;
}

.card-1 .social-icon {
  margin-top: 20px;
}

.card-1 .social-icon i {
  width: 40px;
  height: 40px;
  color: black;
  margin: 0 5px;
  transition: all 0.5s ease-in-out;
}

.card-1 .social-icon i:hover {
  text-shadow: 0 0 15px rgb(255, 0, 200);
}

.card-1 h1,
.card-1 h3 {
  text-align: center;
  color: rgb(0, 174, 255);
  font-family: Arial, sans-serif;
  margin: 5px 0;
}

.card-1:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

/* Additional Card Shadow Variants */
.card-2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.card-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.card-4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.card-5 {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}

/* Responsive Design */
@media (max-width: 991px) {
  .card-1 {
    padding: 20px;
    background-color: rgb(196, 232, 236);
    width: 80%;
    margin: auto;
  }

  .card-1 p {
    text-align: center;
    color: black;
  }

  .card-1 p b {
    color: rgb(0, 204, 255);
  }

  .card-1 hr {
    width: 60%;
    margin: 20px auto;
    border-color: red;
  }

  .card-1 .social-icon i {
    color: rgb(5, 197, 255);
    width: 35px;
    height: 35px;
  }
}

/* footer */
footer {
  background-color: #4caf50; /* Green background */
  color: white; /* White text */
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  justify-content: center; /* Center align items */
  margin-bottom: 20px;
}

.footer-menu a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  padding: 5px 0;
}

.footer-menu a:hover {
  text-decoration: underline;
}

.footer-info {
  text-align: center;
}

.footer-info p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-info a {
  color: white;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-menu {
    flex-direction: column; /* Stack links vertically */
    align-items: center; /* Center align vertically stacked links */
  }

  .footer-menu a {
    margin: 5px 0; /* Add vertical spacing for stacked links */
  }
}

@media (max-width: 480px) {
  footer {
    padding: 15px;
  }

  .footer-menu a {
    font-size: 12px; /* Smaller font for very small screens */
  }

  .footer-info p {
    font-size: 12px;
  }
}
